'Usage
Dim instance As CollectionBase(Of T) Dim index As Integer Dim value As T instance.Item(index) = value value = instance.Item(index)
Parameters
- index
- The zero-based index of the collection to access.
'Usage
Dim instance As CollectionBase(Of T) Dim index As Integer Dim value As T instance.Item(index) = value value = instance.Item(index)
Exception | Description |
---|---|
System.ArgumentOutOfRangeException | The index parameter is outside the valid range of indexes for the collection. |